home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVTSTOP.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  1KB  |  29 lines

  1. /*================================================*/
  2. /* TVTSTOP.C                                      */
  3. /*                                                */
  4. /* (c) Copyright 1988 Ralf Brown                  */
  5. /*     All Rights Reserved                        */
  6. /* May be freely copied for noncommercial use,    */
  7. /* provided that this copyright notice remains    */
  8. /* intact and any changes are indicated in the    */
  9. /* comment blocks preceding functions             */
  10. /*================================================*/
  11.  
  12. #include "tvapi.h"
  13.  
  14. /*================================================*/
  15. /* TVtask_stop  temporarily stop another task     */
  16. /*   Ralf Brown 4/2/88                            */
  17. /*================================================*/
  18. /* At least in DV 2.00, you can only stop the     */
  19. /* currently executing task                       */
  20.  
  21. void pascal TVtask_stop(OBJECT task)
  22. {
  23.    _ES = (task) ? OBJSEG(task) : OBJSEG(TVmytask()) ;
  24.    _AX = 0x101D ;
  25.    geninterrupt(0x15) ;
  26. }
  27.  
  28. /* End of TVTSTOP.C */
  29.